From f9e2600ea107bf408a2778f456bd1beee29ce3c1 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 18 Apr 2017 15:48:59 +0100 Subject: [PATCH] hotplug/FreeBSD: configure xenstored MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Wei Liu Acked-by: Ian Jackson Acked-by: Roger Pau Monné Release-acked-by: Julien Grall --- tools/hotplug/FreeBSD/rc.d/xencommons.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/hotplug/FreeBSD/rc.d/xencommons.in b/tools/hotplug/FreeBSD/rc.d/xencommons.in index 2fcd84ab6d..ccd5a9b055 100644 --- a/tools/hotplug/FreeBSD/rc.d/xencommons.in +++ b/tools/hotplug/FreeBSD/rc.d/xencommons.in @@ -3,6 +3,8 @@ # PROVIDE: xencommons # REQUIRE: DAEMON +XENSTORED=@XENSTORED@ + . /etc/rc.subr . @XEN_SCRIPT_DIR@/hotplugpath.sh @@ -37,7 +39,7 @@ xen_startcmd() local time=0 local timeout=30 - xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${sbindir}/xenstored) + xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${XENSTORED}) if test -z "$xenstored_pid"; then printf "Cleaning xenstore database.\n" if [ -z "${XENSTORED_ROOTDIR}" ]; then @@ -49,7 +51,7 @@ xen_startcmd() if [ -n "${XENSTORED_TRACE}" ]; then XENSTORED_ARGS="${XENSTORED_ARGS} -T @XEN_LOG_DIR@/xenstored-trace.log" fi - ${sbindir}/xenstored ${XENSTORED_ARGS} + ${XENSTORED} ${XENSTORED_ARGS} while [ $time -lt $timeout ] && ! `${bindir}/xenstore-read -s / >/dev/null 2>&1` ; do printf "." time=$(($time+1)) @@ -87,7 +89,7 @@ xen_stop() xen_status() { - xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${sbindir}/xenstored) + xenstored_pid=$(check_pidfile ${XENSTORED_PIDFILE} ${XENSTORED}) if test -n ${xenstored_pid}; then pids="$pids $xenstored_pid" fi -- 2.30.2